GdkEventButton->button can occupy significantly more than 2 bits. Besides,
authorElliot Lee <sopwith@src.gnome.org>
Wed, 22 Nov 2000 01:00:26 +0000 (01:00 +0000)
committerElliot Lee <sopwith@src.gnome.org>
Wed, 22 Nov 2000 01:00:26 +0000 (01:00 +0000)
* gtk/gtkmenushell.h: GdkEventButton->button can occupy significantly more than 2
bits. Besides, I need to implement an evil hack. :)

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkmenushell.h

index 80f3da19ee85b8c1674aa4176e96fa6a0050f0d7..bb61dcb77059b589de79bb903cd9f55fa8fc8433 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-11-21  Elliot Lee  <sopwith@redhat.com>
+       * gtk/gtkmenushell.h: GdkEventButton->button can occupy significantly
+       more than 2 bits. Besides, I need to implement an evil hack. :)
+
 Tue Nov 21 14:17:51 GMT 2000  Tony Gale <gale@gtk.org>
 
        * docs/tutorial/gtk-tut.sgml: minor corrections
index 80f3da19ee85b8c1674aa4176e96fa6a0050f0d7..bb61dcb77059b589de79bb903cd9f55fa8fc8433 100644 (file)
@@ -1,3 +1,7 @@
+2000-11-21  Elliot Lee  <sopwith@redhat.com>
+       * gtk/gtkmenushell.h: GdkEventButton->button can occupy significantly
+       more than 2 bits. Besides, I need to implement an evil hack. :)
+
 Tue Nov 21 14:17:51 GMT 2000  Tony Gale <gale@gtk.org>
 
        * docs/tutorial/gtk-tut.sgml: minor corrections
index 80f3da19ee85b8c1674aa4176e96fa6a0050f0d7..bb61dcb77059b589de79bb903cd9f55fa8fc8433 100644 (file)
@@ -1,3 +1,7 @@
+2000-11-21  Elliot Lee  <sopwith@redhat.com>
+       * gtk/gtkmenushell.h: GdkEventButton->button can occupy significantly
+       more than 2 bits. Besides, I need to implement an evil hack. :)
+
 Tue Nov 21 14:17:51 GMT 2000  Tony Gale <gale@gtk.org>
 
        * docs/tutorial/gtk-tut.sgml: minor corrections
index 80f3da19ee85b8c1674aa4176e96fa6a0050f0d7..bb61dcb77059b589de79bb903cd9f55fa8fc8433 100644 (file)
@@ -1,3 +1,7 @@
+2000-11-21  Elliot Lee  <sopwith@redhat.com>
+       * gtk/gtkmenushell.h: GdkEventButton->button can occupy significantly
+       more than 2 bits. Besides, I need to implement an evil hack. :)
+
 Tue Nov 21 14:17:51 GMT 2000  Tony Gale <gale@gtk.org>
 
        * docs/tutorial/gtk-tut.sgml: minor corrections
index 80f3da19ee85b8c1674aa4176e96fa6a0050f0d7..bb61dcb77059b589de79bb903cd9f55fa8fc8433 100644 (file)
@@ -1,3 +1,7 @@
+2000-11-21  Elliot Lee  <sopwith@redhat.com>
+       * gtk/gtkmenushell.h: GdkEventButton->button can occupy significantly
+       more than 2 bits. Besides, I need to implement an evil hack. :)
+
 Tue Nov 21 14:17:51 GMT 2000  Tony Gale <gale@gtk.org>
 
        * docs/tutorial/gtk-tut.sgml: minor corrections
index 80f3da19ee85b8c1674aa4176e96fa6a0050f0d7..bb61dcb77059b589de79bb903cd9f55fa8fc8433 100644 (file)
@@ -1,3 +1,7 @@
+2000-11-21  Elliot Lee  <sopwith@redhat.com>
+       * gtk/gtkmenushell.h: GdkEventButton->button can occupy significantly
+       more than 2 bits. Besides, I need to implement an evil hack. :)
+
 Tue Nov 21 14:17:51 GMT 2000  Tony Gale <gale@gtk.org>
 
        * docs/tutorial/gtk-tut.sgml: minor corrections
index 80f3da19ee85b8c1674aa4176e96fa6a0050f0d7..bb61dcb77059b589de79bb903cd9f55fa8fc8433 100644 (file)
@@ -1,3 +1,7 @@
+2000-11-21  Elliot Lee  <sopwith@redhat.com>
+       * gtk/gtkmenushell.h: GdkEventButton->button can occupy significantly
+       more than 2 bits. Besides, I need to implement an evil hack. :)
+
 Tue Nov 21 14:17:51 GMT 2000  Tony Gale <gale@gtk.org>
 
        * docs/tutorial/gtk-tut.sgml: minor corrections
index 15aafc6d807543d6b2301bb284d31fe51996abc0..3d09f7fbc9f6f0564fe6b1ec194892f42e5e7d8f 100644 (file)
@@ -56,15 +56,15 @@ struct _GtkMenuShell
   GtkWidget *active_menu_item;
   GtkWidget *parent_menu_shell;
   
+  guint button;
+  guint32 activate_time;
+
   guint active : 1;
   guint have_grab : 1;
   guint have_xgrab : 1;
-  guint button : 2;
   guint ignore_leave : 1;
   guint menu_flag : 1;
   guint ignore_enter : 1;
-  
-  guint32 activate_time;
 };
 
 struct _GtkMenuShellClass